home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 1996 October: Mac OS SDK / Dev.CD Oct 96 SDK / Dev.CD Oct 96 SDK2.toast / Development Kits (Disc 2) / OpenDoc / OpenDoc Development / Debugging Support / OpenDoc Source Code / UI / UIInit.cpp < prev    next >
Encoding:
C/C++ Source or Header  |  1996-04-22  |  643 b   |  32 lines  |  [TEXT/MPS ]

  1. /*
  2.     File:        UIInit.cpp
  3.  
  4.     Contains:    CFM initialization for UI subsystem
  5.  
  6.     Owned by:    Richard Rodseth
  7.  
  8.     Copyright:    © 1994 - 1995 by Apple Computer, Inc., all rights reserved.
  9.  
  10.     Change History (most recent first):
  11.  
  12.          <4>     5/26/95    RR        #1251403: Multithreading naming support
  13.          <3>     1/12/95    jpa        Don't use obsolete Toolbox names [1211211]
  14.          <2>     9/29/94    RA        1189812: Mods for 68K build.
  15.          <1>     6/30/94    RR        first checked in
  16.  
  17.     To Do:
  18. */
  19.  
  20. #ifndef __USERSRCM__
  21. #include "UseRsrcM.h"
  22. #endif
  23.  
  24.  
  25. extern "C" pascal OSErr UICFMInit( CFragInitBlockPtr );
  26.  
  27.  
  28. pascal OSErr UICFMInit (CFragInitBlockPtr initBlkPtr)
  29. {
  30.     return InitLibraryResources(initBlkPtr);
  31. }
  32.